home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cleartrust_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  88 lines

  1. #
  2. # This script is (C) Renaud Deraison
  3. #
  4. #
  5. # Ref: (no bid nor cve yet)
  6. #  Date: Fri, 14 Mar 2003 18:42:02 -0800
  7. #  To: bugtraq@securityfocus.com
  8. #  Subject: @(#)Mordred Security Labs - RSA ClearTrust Cross Site Scripting issues 
  9. #  From: sir.mordred@hushmail.com
  10.  
  11.  
  12.  
  13. if(description)
  14. {
  15.  script_id(11399);
  16.  script_bugtraq_id(7108);
  17.  script_version ("$Revision: 1.11 $");
  18.  
  19.  
  20.  name["english"] = "ClearTrust XSS";
  21.  script_name(english:name["english"]);
  22.  
  23.  desc["english"] = "
  24. The remote ClearTrust server is vulnerable to cross-site scripting,
  25. when requesting the script ct_login.asp with improper arguments,
  26. as in :
  27.  
  28. GET /cleartrust/ct_logon.asp?CTLoginErrorMsg=<script>alert(1)</script>
  29.  
  30.  
  31. Solution : None at this time
  32. Risk factor : Medium";
  33.  
  34.  
  35.  script_description(english:desc["english"]);
  36.  
  37.  summary["english"] = "Checks for ClearTrust XSS";
  38.  script_summary(english:summary["english"]);
  39.  
  40.  script_category(ACT_GATHER_INFO);
  41.  
  42.  
  43.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison");
  44.  family["english"] = "CGI abuses";
  45.  family["francais"] = "Abus de CGI";
  46.  script_family(english:family["english"], francais:family["francais"]);
  47.  
  48.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  49.  script_require_ports("Services/www", 80);
  50.  
  51.  exit(0);
  52. }
  53.  
  54. #
  55. # The script code starts here
  56. #
  57. include("http_func.inc");
  58. include("http_keepalive.inc");
  59.  
  60. port = get_http_port(default:80);
  61. if ( ! can_host_asp(port:port) ) exit(0);
  62.  
  63. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  64.  
  65. foreach d (make_list(cgi_dirs()))
  66. {
  67. req = http_get(item:string(d, "/cleartrust/ct_login.asp?CTLoginErrorMsg=<script>alert(1)</script>"), port:port);
  68. res = http_keepalive_send_recv(port:port, data:req);
  69.  
  70. if ( res == NULL ) exit (0);
  71. if(!ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:res))exit(0);
  72.  
  73. if("<script>alert(1)</script>" >< res ) {
  74.  security_warning(port);
  75.  exit(0);
  76. }
  77. req = http_get(item:string(d, "/cleartrust/ct_login.jsp?CTLoginErrorMsg=<script>alert(1)</script>"), port:port);
  78. res = http_keepalive_send_recv(port:port, data:req);
  79.  
  80. if ( res == NULL ) exit (0);
  81. if(!ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:res))exit(0);
  82.  
  83. if("<script>alert(1)</script>" >< res ) {
  84.  security_warning(port);
  85.  exit(0);
  86. }
  87. }
  88.